home *** CD-ROM | disk | FTP | other *** search
/ Shareware Super Platinum 8 / Shareware Super Platinum 8.iso / mac / DATABASE / DOCPROC1.ZIP;1 / SAMP-DOC.ZIP / BITNET.DOC next >
Encoding:
Text File  |  1992-11-08  |  40.6 KB  |  512 lines

  1.                                                                                 
  2.                                                                                 
  3.                                                                                 
  4.                                                                                 
  5.                                                                                 
  6.                                                                                 
  7.                                                                                 
  8.                                                                                 
  9.                                                                                 
  10.                                                                                 
  11.                                                                                 
  12.                                                                                 
  13.                                                                                 
  14.                        *************************************                    
  15.                        *                                   *                    
  16.                        *            B I T N E T            *                    
  17.                        *  ON THE MVS/XA OPERATING SYSTEM   *                    
  18.                        *                                   *                    
  19.                        *************************************                    
  20.                                                                                 
  21.                                                                                 
  22.                                                                                 
  23.                                                                                 
  24.                                                                                 
  25.                                                                                 
  26.                                                                                 
  27.                                                                                 
  28.                                                                                 
  29.                                                                                 
  30.                                                                                 
  31.                                                                                 
  32.                                                                                 
  33.                                                                                 
  34.                                                                                 
  35.                                                                                 
  36.                                                                                 
  37.                                                                                 
  38.                                                                                 
  39.                                                                                 
  40.                                                                                 
  41.                                                                                 
  42.                                                                                 
  43.                                                                                 
  44.                                                                                 
  45.                                                                                 
  46.                                                                                 
  47.                                                                                 
  48.                                                                                 
  49.                                                                                 
  50.                                                                                 
  51.                                                                                 
  52.                                                                                 
  53.                                                                                 
  54.                                                         John S. Ward        
  55.                                                           03/15/93              
  56.  
  57. EJECT                                                                           
  58.        BITNET is a network of over 1000 computers at educational and            
  59.    research institutions worldwide.  Georgia State University's AMDAHL          
  60.    5860 (System D) is a part of this network which enables its users at         
  61.    different sites to share information via electronic mail.  BITNET            
  62.    has gateways into several other networks (ARPANET, CSNET, MAILNET,           
  63.    and UUCP, for example).  Because BITNET is not considered to be a            
  64.    secure network, sensitive or confidential data should not be sent via        
  65.    BITNET.                                                                      
  66.                                                                                 
  67.        To access a member of the BITNET network, you may use the TSO/E          
  68.    Interactive Data Transmission Facility on the AMDAHL.  The facility's        
  69.    TRANSMIT command allows you to send data to other users on the AMDAHL        
  70.    (System D) as well as users on other BITNET nodes.  The RECEIVE              
  71.    command allows you to receive data.  The facility provides the ability       
  72.    to log messages and data sets transmitted and received and the ability       
  73.    to create nickname and distribution lists.  Read the handout on TSO/E        
  74.    Mail for specific information on this facility or refer to the TSO/E         
  75.    COMMAND LANGUAGE REFERENCE MANUAL - SC28-1134.                               
  76.                                                                                 
  77.                                                                                 
  78.    TRANSMIT COMMAND                                                             
  79.                                                                                 
  80.        The TRANSMIT command allows you to send interactive messages, data       
  81.    sets prefixed by interactive messages, and data sets without any             
  82.    attached message.  However, both interactive messages and data sets          
  83.    are sent as data sets when the destination is a non-MVS node.                
  84.    Transmission of data sets to BITNET nodes is limited to data sets of         
  85.    300,000 bytes (3,750 eighty-character records).  Larger data sets may        
  86.    be divided into smaller data sets and transmitted at appropriate             
  87.    intervals.                                                                   
  88. EJECT                                                                           
  89.        The format of the TRANSMIT command is:                                   
  90.                                                                                 
  91.            TRANSMIT  nodename.userid  DATASET(dsname)    options                
  92.                                                                                 
  93.        where                                                                    
  94.                                                                                 
  95.            nodename is the name given to an institution's computer by           
  96.                     BITNET.  The node name for GSU's AMDAHL running MVS/XA
  97.                     is GSUMVS1.  The current list of node names is
  98.                     maintained under the member SYS.MVS.UPDATE(BITNODES).
  99.                                                                                 
  100.            userid   is the userid of the person you are trying to               
  101.                     TRANSMIT to.                                                
  102.                                                                                 
  103.            dsname   is the name of the data set you wish to send.  Put
  104.                     fully qualified names in quotes.  This data set may
  105.                     be a partitioned data set or a sequential data set.
  106.                     You cannot send data sets with keys or user labels,         
  107.                     ISAM data sets, or VSAM data sets.                          
  108.                                                                                 
  109.            options  A complete description of all available options can be      
  110.                     found in the TSO/E Command Language Reference Manual.       
  111.                                                                                 
  112.    Note:  To send a partitioned data set to a non-MVS node, you MUST use        
  113.           the SEQUENTIAL option on the TRANSMIT command to send the data        
  114.           set as a sequential file.  You may send partitioned data sets         
  115.           only to nodes running MVS.  If you do not use the DSNAME              
  116.           option, TRANSMIT will assume you wish to send a message and           
  117.           will prompt you with a screen for entering that message.              
  118.           Messages are sent as data sets to non-MVS nodes.                      
  119.                                                                                 
  120.        To send a message or data set to more than one user at the same          
  121.    time, enclose the list of names in parentheses:                              
  122.                                                                                 
  123.        TRANSMIT (nodename.userid nodename.userid ...) DATASET(dsname)           
  124.                                                                                 
  125.    or establish a nickname and distribution list using the data set             
  126.    NAMES.TEXT.                                                                  
  127.                                                                                 
  128.    Note:  You may issue the TRANSMIT command from the COMMAND line or           
  129.           OPTION line of any ISPF screen by prefixing the command with          
  130.           "TSO" as shown below.                                                 
  131.                                                                                 
  132.           COMMAND => TSO TRANSMIT nodename.userid DATASET(dsname)               
  133.                                                                                 
  134.        The TRANSMIT command has several options.  A description of some         
  135.    of the more frequently used options is contained in the handout on           
  136.    TSO/E Mail.  A full description of the options is given in the TSO/E         
  137.    COMMAND LANGUAGE REFERENCE MANUAL - SC28-1134.  You may also issue the       
  138.    TSO command "HELP TRANSMIT" to get more information.                         
  139. EJECT                                                                           
  140.    RECEIVE COMMAND                                                              
  141.                                                                                 
  142.        The RECEIVE command is used to receive information that has been         
  143.    sent to you from another user.  If you have mail waiting to be               
  144.    received, the following message will appear when you logon or when you       
  145.    hit return if you are logged on when the mail comes in:                      
  146.                                                                                 
  147.            +GSU001 MAIL WAITING FROM nodename/userid                            
  148.                                                                                 
  149.    The format of the RECEIVE command is:                                        
  150.                                                                                 
  151.               RECEIVE                                                           
  152.                                                                                 
  153.    Note:  You may issue the RECEIVE command from the COMMAND line or            
  154.           OPTION line of any ISPF screen by prefixing the command with          
  155.           "TSO" as shown below.                                                 
  156.                                                                                 
  157.           COMMAND => TSO RECEIVE                                                
  158.                                                                                 
  159.        If an interactive message has been sent to you it will be                
  160.    displayed on the screen.  You cannot specify a data set to save the          
  161.    message to when you receive it, but a copy of the message is placed in       
  162.    the LOG data set.  (You will not receive interactive messages from           
  163.    non-MVS nodes.)                                                              
  164.                                                                                 
  165.        If an error-free data set has been sent, the following messages          
  166.    will be displayed when you issue the RECEIVE command (any attached           
  167.    message sent along with the data set would appear first):                    
  168.                                                                                 
  169.        INMR901I Data set 'dsname' from 'userid' on 'nodename'.                  
  170.        INMR906A Enter RESTORE parameters or 'DELETE' or 'END'. +                
  171.                                                                                 
  172.    You may respond with a ? whenever you see a + to get more information        
  173.    about what to do.  If you entered a ? now, you would see:                    
  174.                                                                                 
  175.        INMR908A The input file attributes are: DISORG=_______,RECFM=__,         
  176.                 BLKSIZE=____,LRECL=_____,FILE SIZE = ____  +                    
  177.                                                                                 
  178.    If you again entered a ?, you would see:                                     
  179.                                                                                 
  180.        INMR909A You may enter DSNAME, SPACE, UNIT, VOL, OLD/NEW, or             
  181.                 RESTORE/COPY/DELETE/END                                         
  182.                                                                                 
  183.        If you enter END, the RECEIVE command will terminate leaving             
  184.    the file on the spool to be received at a later time.  If you                
  185.    enter DELETE, the file will be erased from the spool.  If you                
  186.    simply press return at this point, the received data set will be             
  187.    saved in the default data set name.  The default is the same name            
  188.    as the transmitted data set with the high level qualifier changed to         
  189.    your userid.  If you do not want the data set saved to this default          
  190. EJECT                                                                           
  191.    name, use the DSNAME option to specify the name of the data set to           
  192.    use.  The format is DSNAME('dsname') where dsname can be the name of a       
  193.    new or existing data set.  Put a fully qualified name in quotes.  If
  194.    you attempt to receive into a file whose file attributes do not match        
  195.    those of the file that was sent, the RECEIVE command will terminate          
  196.    leaving the file on the spool to be received at a later time.  You           
  197.    may specify the allocation parameters for the new data set or just use       
  198.    the defaults.  The default allocation parameters are:                        
  199.                                                                                 
  200.    PARAMETER          DEFAULT VALUE                                             
  201.                                                                                 
  202.    DSNAME             If the data set was error-free, the default is the        
  203.                       same name as the transmitted data set with the high       
  204.                       level qualifier changed to your userid.  If the           
  205.                       data set was transmitted from a non-MVS system            
  206.                       (i.e., most BITNET nodes), the header records will        
  207.                       be unrecognizable to RECEIVE.  Therefore, RECEIVE         
  208.                       interprets them as being erroneous even if the data       
  209.                       in the data set is fine.  When you try to RECEIVE         
  210.                       data sets containing errors, the default data set         
  211.                       is your_userid.RECEIVE.INVALID.FILE.                      
  212.                                                                                 
  213.    SPACE                                                                        
  214.      primary          default value for primary space allocation is a           
  215.                       size equal to the incoming data                           
  216.      secondary        default value is 2.5% of the primary allocation           
  217.                                                                                 
  218.    TRACKS or          space to be allocated in TRACKS, CYLINDERS, or            
  219.    CYLINDERS or       BLOCKS.  Default is TRACKS.                               
  220.    BLOCKS                                                                       
  221.                                                                                 
  222.    DIRECTORY          this option is only applicable when receiving into        
  223.                       a new partitioned data set.  The default value for        
  224.                       directory blocks when receiving a sequential data         
  225.                       set into a new pds is 27.  The default when               
  226.                       receiving a pds into a pds is the number of blocks        
  227.                       required for the received members.                        
  228.                                                                                 
  229.    NEW or             If a value is not given for SPACE, The data set           
  230.    OLD or             disposition default is OLD.  If that fails, NEW           
  231.    MOD or             is used and SPACE values are added.                       
  232.    SHR                                                                          
  233.                                                                                 
  234.        If you attempt to restore the received data set to a data set that       
  235.    already exists, you will be prompted with the message:                       
  236.                                                                                 
  237.        INMR045I Data set 'dsname' already exists.  Reply 'R'                    
  238.                 to replace it. +                                                
  239.                                                                                 
  240.    Any response other than 'R' will terminate RECEIVE leaving the data          
  241.    set on the spool to be received at a later time.                             
  242. EJECT                                                                           
  243.        If you have successfully restored the received data set, you will        
  244.    see the messages below:                                                      
  245.                                                                                 
  246.        INMR001I Restore successful to data set 'dsname'.                        
  247.        INMR900I ----------------------------------------                        
  248.                                                                                 
  249.        If you have any more data sets or messages to receive, they will         
  250.    appear at this point.  If you have no more messages or data sets             
  251.    to receive, you will see the message:                                        
  252.                                                                                 
  253.        INME000I No more Interactive Data Transmission Facility files are        
  254.                 available for the RECEIVE command to process.                   
  255.                                                                                 
  256.        The default data set name for RECEIVE to use when the data set           
  257.    contains errors is 'your_userid.RECEIVE.INVALID.FILE'.  Because              
  258.    the header records on data sets sent from non-MVS systems (VAX,              
  259.    Cyber, VM systems running PROFS, etc.) are not recognizable to TSO's         
  260.    Interactive Data Transmission Facility, these files are interpreted as       
  261.    being erroneous even if the data within the files are fine.                  
  262.                                                                                 
  263.        When you RECEIVE a non-MVS data set or a data set containing             
  264.    errors, you will see the following messages:                                 
  265.                                                                                 
  266.         INMR921I Received file appears not to be an Interactive Data            
  267.                  Transmission Facility file.  The first record is:              
  268.                  * first record appears here *                                  
  269.         INMR901I Dataset X.RECEIVE.INVALID.FILE from ? on ?                     
  270.         INMR907A Enter COPY parameters or 'DELETE' or 'END.'+                   
  271.                                                                                 
  272.        If you press the return key at this point, the data set will be          
  273.    copied into the default data set 'your_userid.RECEIVE.INVALID.FILE'.         
  274.    If there is already something in 'your_userid.RECEIVE.INVALID.FILE',         
  275.    you will be prompted for permission to overwrite it:                         
  276.                                                                                 
  277.    INMR045I Data set 'RECEIVE.INVALID.FILE' already exists.  Reply 'R'          
  278.             to replace it. +                                                    
  279.                                                                                 
  280.        If you do not want the received file saved in the default file, do       
  281.    not press return when prompted to enter copy parameters.  Instead, use       
  282.    the "DSNAME" option to specify the name of the data set to use.  If          
  283.    the file attributes of this data set do not match those of the file          
  284.    you are attempting to receive, RECEIVE will terminate leaving the file       
  285.    on the spool to be received at a later time.                                 
  286.                                                                                 
  287.        For more information on the RECEIVE command, you may issue the           
  288.    TSO command "HELP RECEIVE" or refer to the TSO/E COMMAND LANGUAGE            
  289.    REFERENCE MANUAL - SC28-1134.                                                
  290.                                                                                 
  291. EJECT                                                                           
  292.    GETTING INFORMATION ABOUT BITNET                                             
  293.                                                                                 
  294.        BITNET is supported by the BITNET Network Information Center             
  295.    (BITNIC). BITNET has three sources of information:  NICSERVE, LISTSERV,      
  296.    and DATABASE.  BITNIC's file server, NICSERVE, offers information on         
  297.    upcoming conferences, BITNET administration and general information,         
  298.    BITNET sites and nodes, protocols, BITNET software, LISTSERV, and the        
  299.    EDUCOM NETWORKING newsletter.  LISTSERV is a network mailing list            
  300.    server.  DATABASE is an inter-network database server that is                
  301.    currently under development.                                                 
  302.                                                                                 
  303.        Because TSO's Interactive Data Transmission Facility cannot send         
  304.    interactive messages in standard BITNET format, a data set must be           
  305.    created whose contents mimic a standard mail file.  This data set must       
  306.    follow the Arpanet standard header format.  When creating the data set       
  307.    using the ISPF editor, issue the NUM OFF command at the COMMAND prompt       
  308.    before typing in the data.  If you fail to turn NUM OFF, the data will       
  309.    be unrecognizable by any of the servers.  You send the data set to           
  310.    BITNIC by submitting JCL containing the necessary commands.  Because         
  311.    you use JCL to submit the job and do not use the TRANSMIT command, a         
  312.    log entry will not be made in the LOG1.LOGSET data set.                      
  313.                                                                                 
  314.    NICSERVE                                                                     
  315.                                                                                 
  316.        The GET command is used to request files from NICSERVE.  The             
  317.    format to use when sending to NICSERVE is given below.  Be sure              
  318.    to turn NUM OFF when creating the data set in the ISPF editor or             
  319.    NICSERVE will not recognize the data set as mail.                            
  320.                                                                                 
  321.    DATE: day, date month year                                                   
  322.    FROM: your_userid@GSUMVS1                                                    
  323.    TO:   NICSERVE@BITNIC                                                        
  324.                                                                                 
  325.    GET filename filetype                                                        
  326.                                                                                 
  327.    where filename and filetype are from the NICSERVE INDEX which contains       
  328.    descriptions of all available NICSERVE files.  You may issue only one        
  329.    GET command at a time.  (You may not stack commands.)                        
  330.                                                                                 
  331.    Note:  All entries must begin in column one.  DATE: must be the              
  332.           first line in the data set.  There can be only one space              
  333.           after the : in the DATE and FROM entries.  The TO: entry              
  334.           should line up with the others.  The blank line between               
  335.           the TO: entry and the GET command is required.                        
  336.                                                                                 
  337.        You can request a HELP file on using NICSERVE from NICSERVE by           
  338.    issuing the command "GET NICSERVE HELP" or just "GET HELP."  You can         
  339.    get the current index of the files available from NICSERVE by issuing        
  340.    the command "GET INDEX."                                                     
  341. EJECT                                                                           
  342.        The following JCL code may be used to send requests to NICSERVE:         
  343.                                                                                 
  344.    //STEP1   EXEC   PGM=IEBGENER                                                
  345.    //SYSPRINT DD   SYSOUT=*                                                     
  346.    //SYSUT1   DD   DSN=dsname,DISP=SHR                                          
  347.    //SYSUT2   DD   SYSOUT=M,DEST=(BITNIC,MAILER)                                
  348.    //SYSIN    DD   DUMMY                                                        
  349.                                                                                 
  350.    where dsname is the fully qualified data set name containing the GET         
  351.    command.  You must use SYSOUT=M and DEST=(BITNIC,MAILER).  For               
  352.    NICSERVE to recognize the file as mail, the output class (SYSOUT) must       
  353.    be M.  The TRANSMIT command sends messages using output class B, and         
  354.    NICSERVE cannot recognize them as mail.  Therefore, you must create a        
  355.    data set containing the NICSERVE request and send it using the JCL           
  356.    above.  Notice that you send the request to MAILER, NOT NICSERVE.            
  357.    (This is because you are sending the request via mail and not issuing        
  358.    the command interactively.)                                                  
  359.                                                                                 
  360.       For each "GET" command issued, you will receive the data set you          
  361.    requested from NICSERVE prefixed with the following:                         
  362.                                                                                 
  363.    Received: by BITNIC (Mailer X1.23b) id 6035; date request received by BI     
  364.    Date:     date                                                               
  365.    From:     BITNET Network Support Center <NICSERVE@BITNIC>                    
  366.    Subject:  Your NICSERVE request: "GET filename filetype"                     
  367.    To:       your_userid@GSUMVS1                                                
  368.                                                                                 
  369.                                                                                 
  370.    LISTSERV                                                                     
  371.                                                                                 
  372.        LISTSERV, BITNET'S list server, provides mailing list capabilities       
  373.    for the users of BITNET.  To use an established mailing list simply          
  374.    use the list name for the userid and BITNIC as the node name.                
  375.    LISTSERV generates a copy of the message text for each individual            
  376.    userid on the list along with a comment that the message was sent            
  377.    to a list and the name of the list.  You can get a copy of currently         
  378.    established distribution lists by issuing the command "GET LISTSERV          
  379.    GROUPS" to NICSERVE.                                                         
  380.                                                                                 
  381.                                                                                 
  382.    DATABASE                                                                     
  383.                                                                                 
  384.        The database feature of BITNET is being developed by the BITNET          
  385.    Development and Operations Center (BITDOC).  DATABASE provides user          
  386.    specified keyword access to subsets of larger databases.  Retrieval          
  387.    capabilities are based on SPIRES, the Stanford Public Information            
  388. EJECT                                                                           
  389.    Retrieval System.   To use the DATABASE, you must create a data              
  390.    set that mimics a standard ARPANET header format.  The format to use         
  391.    for DATABASE is given below.  Be sure to turn NUM OFF when creating          
  392.    the data set in the ISPF editor, or DATABASE will not recognize it as        
  393.    mail.                                                                        
  394.                                                                                 
  395.    DATE: day, date month year                                                   
  396.    FROM: your_userid@nodename                                                   
  397.    TO:   DATABASE@BITNIC                                                        
  398.                                                                                 
  399.    SIGNIN command (if first time to access DATABASE)                            
  400.                                                                                 
  401.      or                                                                         
  402.                                                                                 
  403.    LOGON user_number password (for all subsequent uses of DATABASE)             
  404.    database command                                                             
  405.        .                                                                        
  406.        .                                                                        
  407.        .                                                                        
  408.                                                                                 
  409.    Note:  All entries must begin in column one.  DATE: must be the              
  410.           first line in the data set.  There can be only one space              
  411.           after the : in the DATE and FROM entries.  The TO: entry              
  412.           should line up with the others.  The blank line between               
  413.           the TO: entry and the first database command (either                  
  414.           SIGNIN or LOGON) is required.  Any number of database                 
  415.           commands may be issued, but each must begin on a new                  
  416.           line.                                                                 
  417.                                                                                 
  418.    The first time you use the DATABASE, you must establish a user number        
  419.    and password.  This is done through the SIGNIN command which must be         
  420.    the first command issued.  The format of the SIGNIN command is:              
  421.                                                                                 
  422.        SIGNIN password                                                          
  423.                                                                                 
  424.            where password is a contiguous string that is between 8 and 20       
  425.            characters long.                                                     
  426.                                                                                 
  427.    You will receive the following message from DATABASE@BITNIC:                 
  428.                                                                                 
  429.    Received: by BITNIC (Mailer X1.23b) id 6035; date request received by BI     
  430.    Date:     date                                                               
  431.    From:     DATABASE@BITNIC                                                    
  432.    Subject:  SIGNIN password                                                    
  433.    To:       your_userid@GSUMVS1                                                
  434.    Comments: Processing SIGNIN request                                          
  435.                                                                                 
  436.    Your SIGNIN request has been processed.  You have been assigned a user       
  437.    number (UN) of ###.  Please keep track of the password you supplied on       
  438.    the SIGNIN command, since all DATABASE requests must be preceded with        
  439.    the line LOGON user_number password.                                         
  440.                                                                                 
  441.    Any subsequent time you use the DATABASE, you must issue the LOGON           
  442.    command as the first database command.                                       
  443. EJECT                                                                           
  444.        The following JCL code may be used to send requests to DATABASE:         
  445.                                                                                 
  446.    //STEP1   EXEC   PGM=IEBGENER                                                
  447.    //SYSPRINT DD   SYSOUT=*                                                     
  448.    //SYSUT1   DD   DSN=dsname,DISP=SHR                                          
  449.    //SYSUT2   DD   SYSOUT=M,DEST=(BITNIC,DATABASE)                              
  450.    //SYSIN    DD   DUMMY                                                        
  451.                                                                                 
  452.    where dsname is the fully qualified data set name containing the             
  453.    database commands.  Note that SYSOUT=M and DEST=(BITNIC,DATABASE)            
  454.    must be used.                                                                
  455.                                                                                 
  456.        For a complete set of help files on the DATABASE server,                 
  457.    issue the following DATABASE commands:                                       
  458.                                                                                 
  459.        HELP                                                                     
  460.        HELP ARPANET                                                             
  461.        HELP DESIGN                                                              
  462.                                                                                 
  463.        For a list of all retrievable subfiles, issue the command LIST.
  464.                                                                                 
  465.    CONNECTIONS TO OTHER NETWORKS                                                
  466.                                                                                 
  467.        The BITNET network is connected to other networks through the use        
  468.    of gateways (nodes that are attached to more than one network).              
  469.    Gateway information can be requested from NICSERVE.  Look in the INDEX       
  470.    file from NICSERVE to find the name of the file containing the gateway       
  471.    information you need.                                                        
  472.                                                                                 
  473.        To transmit to a CSNET node, create a data set similar to the            
  474.    following:                                                                   
  475.                                                                                 
  476.    HELO GSUMVS1.BITNET                                                          
  477.    VERB ON                                                                      
  478.    TICK nnnn                                                                    
  479.    MAIL FROM:<your_userid@GSUMVS1.BITNET>                                       
  480.    RCPT TO:<CSNETuserid%CSNETsite.CSNET@CSNET-RELAY.ARPA>                       
  481.    DATA                                                                         
  482.    Date:      date                                                              
  483.    From:      your_userid@GSUMVS1.BITNET                                        
  484.    To:        CSNETuserid%CSNETsite.CSNET@CSNET-RELAY.ARPA                      
  485.    Subject:   (This is optional)                                                
  486.                                                                                 
  487.    Text of message goes here.  Note that the line separating the                
  488.    headers from the text is REQUIRED.                                           
  489.    .                                                                            
  490.    QUIT                                                                         
  491. EJECT
  492.    Note:  The <> signs are required in the TO: and FROM: header                 
  493.           information.  The blank line after the header information             
  494.           and before the text of the message is required.  The .                
  495.           is required to terminate the text of the message.                     
  496.           nnnn is simply a number you provide.  It is returned                  
  497.           to you if a problem arises in message transmission.                   
  498.  
  499.        Use the following JCL to transmit the data set:                          
  500.                                                                                 
  501.    //STEP1   EXEC   PGM=IEBGENER                                                
  502.    //SYSPRINT DD   SYSOUT=*                                                     
  503.    //SYSUT1   DD   DSN=dsname,DISP=SHR                                          
  504.    //SYSUT2   DD   SYSOUT=M,DEST=(INTERBIT,SMTP)                                
  505.    //SYSIN    DD   DUMMY                                                        
  506.                                                                                 
  507.    Note:  SYSOUT=M is required.  The destination is not the ultimate            
  508.           destination of the message, but the gateway between BITNET            
  509.           and CSNET.                                                            
  510.                                                                                 
  511.                                                                                 
  512.